a11y: Rename checksubmenuitem to checkmenuitem
authorBenjamin Otte <otte@gnome.org>
Mon, 18 Jul 2011 17:21:17 +0000 (19:21 +0200)
committerBenjamin Otte <otte@gnome.org>
Mon, 18 Jul 2011 17:21:17 +0000 (19:21 +0200)
gtk/a11y/Makefile.am
gtk/a11y/gtkcheckmenuitemaccessible.c [new file with mode: 0644]
gtk/a11y/gtkcheckmenuitemaccessible.h [new file with mode: 0644]
gtk/a11y/gtkchecksubmenuitemaccessible.c [deleted file]
gtk/a11y/gtkchecksubmenuitemaccessible.h [deleted file]
gtk/a11y/gtkradiomenuitemaccessible.c
gtk/a11y/gtkradiomenuitemaccessible.h
gtk/gtkcheckmenuitem.c

index f060e4661393b6ee298ce3d18a4ed8f7d42a520d..e9fa7a8fc2ecb3e56eb8320688f2819eb4f0963b 100644 (file)
@@ -10,7 +10,7 @@ gail_c_sources =                      \
        gtkbuttonaccessible.c           \
        gtkcellaccessible.c             \
        gtkcellaccessibleparent.c       \
-       gtkchecksubmenuitemaccessible.c \
+       gtkcheckmenuitemaccessible.c    \
        gtkcomboboxaccessible.c         \
        gtkcontaineraccessible.c        \
        gtkcontainercellaccessible.c    \
@@ -58,7 +58,7 @@ gail_private_h_sources =              \
        gtkbuttonaccessible.h           \
        gtkcellaccessible.h             \
        gtkcellaccessibleparent.h       \
-       gtkchecksubmenuitemaccessible.h \
+       gtkcheckmenuitemaccessible.h    \
        gtkcomboboxaccessible.h         \
        gtkcontaineraccessible.h        \
        gtkcontainercellaccessible.h    \
diff --git a/gtk/a11y/gtkcheckmenuitemaccessible.c b/gtk/a11y/gtkcheckmenuitemaccessible.c
new file mode 100644 (file)
index 0000000..0b111f0
--- /dev/null
@@ -0,0 +1,124 @@
+/* GAIL - The GNOME Accessibility Implementation Library
+ * Copyright 2002 Sun Microsystems Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+#include "config.h"
+
+#include <string.h>
+#include <gtk/gtk.h>
+#include "gtkcheckmenuitemaccessible.h"
+
+
+G_DEFINE_TYPE (GtkCheckMenuItemAccessible, _gtk_check_menu_item_accessible, GTK_TYPE_SUBMENU_ITEM_ACCESSIBLE)
+
+static void
+toggled_cb (GtkWidget *widget)
+{
+  AtkObject *accessible;
+  GtkCheckMenuItem *check_menu_item;
+  gboolean active;
+
+  check_menu_item = GTK_CHECK_MENU_ITEM (widget);
+  active = gtk_check_menu_item_get_active (check_menu_item);
+
+  accessible = gtk_widget_get_accessible (widget);
+  atk_object_notify_state_change (accessible, ATK_STATE_CHECKED, active);
+}
+
+static void
+gtk_check_menu_item_accessible_initialize (AtkObject *obj,
+                                              gpointer   data)
+{
+  ATK_OBJECT_CLASS (_gtk_check_menu_item_accessible_parent_class)->initialize (obj, data);
+
+  g_signal_connect (data, "toggled", G_CALLBACK (toggled_cb), NULL);
+
+  obj->role = ATK_ROLE_CHECK_MENU_ITEM;
+}
+
+static AtkStateSet *
+gtk_check_menu_item_accessible_ref_state_set (AtkObject *accessible)
+{
+  AtkStateSet *state_set;
+  GtkCheckMenuItem *check_menu_item;
+  GtkWidget *widget;
+
+  widget = gtk_accessible_get_widget (GTK_ACCESSIBLE (accessible));
+  if (widget == NULL)
+    return NULL;
+
+  state_set = ATK_OBJECT_CLASS (_gtk_check_menu_item_accessible_parent_class)->ref_state_set (accessible);
+
+  check_menu_item = GTK_CHECK_MENU_ITEM (widget);
+
+  if (gtk_check_menu_item_get_active (check_menu_item))
+    atk_state_set_add_state (state_set, ATK_STATE_CHECKED);
+
+  if (gtk_check_menu_item_get_inconsistent (check_menu_item))
+    {
+      atk_state_set_remove_state (state_set, ATK_STATE_ENABLED);
+      atk_state_set_add_state (state_set, ATK_STATE_INDETERMINATE);
+    }
+
+  return state_set;
+}
+
+static void
+gtk_check_menu_item_accessible_notify_gtk (GObject    *obj,
+                                              GParamSpec *pspec)
+{
+  GtkCheckMenuItem *check_menu_item = GTK_CHECK_MENU_ITEM (obj);
+  AtkObject *atk_obj;
+  gboolean sensitive;
+  gboolean inconsistent;
+
+  atk_obj = gtk_widget_get_accessible (GTK_WIDGET (check_menu_item));
+  sensitive = gtk_widget_get_sensitive (GTK_WIDGET (check_menu_item));
+  inconsistent = gtk_check_menu_item_get_inconsistent (check_menu_item);
+
+  if (strcmp (pspec->name, "inconsistent") == 0)
+    {
+      atk_object_notify_state_change (atk_obj, ATK_STATE_INDETERMINATE, inconsistent);
+      atk_object_notify_state_change (atk_obj, ATK_STATE_ENABLED, (sensitive && !inconsistent));
+    }
+  else if (strcmp (pspec->name, "sensitive") == 0)
+    {
+      /* Need to override gailwidget behavior of notifying for ENABLED */
+      atk_object_notify_state_change (atk_obj, ATK_STATE_SENSITIVE, sensitive);
+      atk_object_notify_state_change (atk_obj, ATK_STATE_ENABLED, (sensitive && !inconsistent));
+    }
+  else
+    GTK_WIDGET_ACCESSIBLE_CLASS (_gtk_check_menu_item_accessible_parent_class)->notify_gtk (obj, pspec);
+}
+
+static void
+_gtk_check_menu_item_accessible_class_init (GtkCheckMenuItemAccessibleClass *klass)
+{
+  AtkObjectClass *class = ATK_OBJECT_CLASS (klass);
+  GtkWidgetAccessibleClass *widget_class = (GtkWidgetAccessibleClass*)klass;
+
+  widget_class->notify_gtk = gtk_check_menu_item_accessible_notify_gtk;
+
+  class->ref_state_set = gtk_check_menu_item_accessible_ref_state_set;
+  class->initialize = gtk_check_menu_item_accessible_initialize;
+}
+
+static void
+_gtk_check_menu_item_accessible_init (GtkCheckMenuItemAccessible *item)
+{
+}
diff --git a/gtk/a11y/gtkcheckmenuitemaccessible.h b/gtk/a11y/gtkcheckmenuitemaccessible.h
new file mode 100644 (file)
index 0000000..bd7622a
--- /dev/null
@@ -0,0 +1,51 @@
+/* GAIL - The GNOME Accessibility Implementation Library
+ * Copyright 2002 Sun Microsystems Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __GTK_CHECK_MENU_ITEM_ACCESSIBLE_H__
+#define __GTK_CHECK_MENU_ITEM_ACCESSIBLE_H__
+
+#include "gtksubmenuitemaccessible.h"
+
+G_BEGIN_DECLS
+
+#define GTK_TYPE_CHECK_MENU_ITEM_ACCESSIBLE              (_gtk_check_menu_item_accessible_get_type ())
+#define GTK_CHECK_MENU_ITEM_ACCESSIBLE(obj)              (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_CHECK_MENU_ITEM_ACCESSIBLE, GtkCheckMenuItemAccessible))
+#define GTK_CHECK_MENU_ITEM_ACCESSIBLE_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_CHECK_MENU_ITEM_ACCESSIBLE, GtkCheckMenuItemAccessibleClass))
+#define GTK_IS_CHECK_MENU_ITEM_ACCESSIBLE(obj)           (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_CHECK_MENU_ITEM_ACCESSIBLE))
+#define GTK_IS_CHECK_MENU_ITEM_ACCESSIBLE_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_CHECK_MENU_ITEM_ACCESSIBLE))
+#define GTK_CHECK_MENU_ITEM_ACCESSIBLE_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_CHECK_MENU_ITEM_ACCESSIBLE, GtkCheckMenuItemAccessibleClass))
+
+typedef struct _GtkCheckMenuItemAccessible      GtkCheckMenuItemAccessible;
+typedef struct _GtkCheckMenuItemAccessibleClass GtkCheckMenuItemAccessibleClass;
+
+struct _GtkCheckMenuItemAccessible
+{
+  GtkSubmenuItemAccessible parent;
+};
+
+struct _GtkCheckMenuItemAccessibleClass
+{
+  GtkSubmenuItemAccessibleClass parent_class;
+};
+
+GType _gtk_check_menu_item_accessible_get_type (void);
+
+G_END_DECLS
+
+#endif /* __GTK_CHECK_MENU_ITEM_ACCESSIBLE_H__ */
diff --git a/gtk/a11y/gtkchecksubmenuitemaccessible.c b/gtk/a11y/gtkchecksubmenuitemaccessible.c
deleted file mode 100644 (file)
index 2d8380b..0000000
+++ /dev/null
@@ -1,124 +0,0 @@
-/* GAIL - The GNOME Accessibility Implementation Library
- * Copyright 2002 Sun Microsystems Inc.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
- */
-
-#include "config.h"
-
-#include <string.h>
-#include <gtk/gtk.h>
-#include "gtkchecksubmenuitemaccessible.h"
-
-
-G_DEFINE_TYPE (GtkCheckSubmenuItemAccessible, _gtk_check_submenu_item_accessible, GTK_TYPE_SUBMENU_ITEM_ACCESSIBLE)
-
-static void
-toggled_cb (GtkWidget *widget)
-{
-  AtkObject *accessible;
-  GtkCheckMenuItem *check_menu_item;
-  gboolean active;
-
-  check_menu_item = GTK_CHECK_MENU_ITEM (widget);
-  active = gtk_check_menu_item_get_active (check_menu_item);
-
-  accessible = gtk_widget_get_accessible (widget);
-  atk_object_notify_state_change (accessible, ATK_STATE_CHECKED, active);
-}
-
-static void
-gtk_check_submenu_item_accessible_initialize (AtkObject *obj,
-                                              gpointer   data)
-{
-  ATK_OBJECT_CLASS (_gtk_check_submenu_item_accessible_parent_class)->initialize (obj, data);
-
-  g_signal_connect (data, "toggled", G_CALLBACK (toggled_cb), NULL);
-
-  obj->role = ATK_ROLE_CHECK_MENU_ITEM;
-}
-
-static AtkStateSet *
-gtk_check_submenu_item_accessible_ref_state_set (AtkObject *accessible)
-{
-  AtkStateSet *state_set;
-  GtkCheckMenuItem *check_menu_item;
-  GtkWidget *widget;
-
-  widget = gtk_accessible_get_widget (GTK_ACCESSIBLE (accessible));
-  if (widget == NULL)
-    return NULL;
-
-  state_set = ATK_OBJECT_CLASS (_gtk_check_submenu_item_accessible_parent_class)->ref_state_set (accessible);
-
-  check_menu_item = GTK_CHECK_MENU_ITEM (widget);
-
-  if (gtk_check_menu_item_get_active (check_menu_item))
-    atk_state_set_add_state (state_set, ATK_STATE_CHECKED);
-
-  if (gtk_check_menu_item_get_inconsistent (check_menu_item))
-    {
-      atk_state_set_remove_state (state_set, ATK_STATE_ENABLED);
-      atk_state_set_add_state (state_set, ATK_STATE_INDETERMINATE);
-    }
-
-  return state_set;
-}
-
-static void
-gtk_check_submenu_item_accessible_notify_gtk (GObject    *obj,
-                                              GParamSpec *pspec)
-{
-  GtkCheckMenuItem *check_menu_item = GTK_CHECK_MENU_ITEM (obj);
-  AtkObject *atk_obj;
-  gboolean sensitive;
-  gboolean inconsistent;
-
-  atk_obj = gtk_widget_get_accessible (GTK_WIDGET (check_menu_item));
-  sensitive = gtk_widget_get_sensitive (GTK_WIDGET (check_menu_item));
-  inconsistent = gtk_check_menu_item_get_inconsistent (check_menu_item);
-
-  if (strcmp (pspec->name, "inconsistent") == 0)
-    {
-      atk_object_notify_state_change (atk_obj, ATK_STATE_INDETERMINATE, inconsistent);
-      atk_object_notify_state_change (atk_obj, ATK_STATE_ENABLED, (sensitive && !inconsistent));
-    }
-  else if (strcmp (pspec->name, "sensitive") == 0)
-    {
-      /* Need to override gailwidget behavior of notifying for ENABLED */
-      atk_object_notify_state_change (atk_obj, ATK_STATE_SENSITIVE, sensitive);
-      atk_object_notify_state_change (atk_obj, ATK_STATE_ENABLED, (sensitive && !inconsistent));
-    }
-  else
-    GTK_WIDGET_ACCESSIBLE_CLASS (_gtk_check_submenu_item_accessible_parent_class)->notify_gtk (obj, pspec);
-}
-
-static void
-_gtk_check_submenu_item_accessible_class_init (GtkCheckSubmenuItemAccessibleClass *klass)
-{
-  AtkObjectClass *class = ATK_OBJECT_CLASS (klass);
-  GtkWidgetAccessibleClass *widget_class = (GtkWidgetAccessibleClass*)klass;
-
-  widget_class->notify_gtk = gtk_check_submenu_item_accessible_notify_gtk;
-
-  class->ref_state_set = gtk_check_submenu_item_accessible_ref_state_set;
-  class->initialize = gtk_check_submenu_item_accessible_initialize;
-}
-
-static void
-_gtk_check_submenu_item_accessible_init (GtkCheckSubmenuItemAccessible *item)
-{
-}
diff --git a/gtk/a11y/gtkchecksubmenuitemaccessible.h b/gtk/a11y/gtkchecksubmenuitemaccessible.h
deleted file mode 100644 (file)
index 2c688d7..0000000
+++ /dev/null
@@ -1,51 +0,0 @@
-/* GAIL - The GNOME Accessibility Implementation Library
- * Copyright 2002 Sun Microsystems Inc.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
- */
-
-#ifndef __GTK_CHECK_SUBMENU_ITEM_ACCESSIBLE_H__
-#define __GTK_CHECK_SUBMENU_ITEM_ACCESSIBLE_H__
-
-#include "gtksubmenuitemaccessible.h"
-
-G_BEGIN_DECLS
-
-#define GTK_TYPE_CHECK_SUBMENU_ITEM_ACCESSIBLE              (_gtk_check_submenu_item_accessible_get_type ())
-#define GTK_CHECK_SUBMENU_ITEM_ACCESSIBLE(obj)              (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_CHECK_SUBMENU_ITEM_ACCESSIBLE, GtkCheckSubmenuItemAccessible))
-#define GTK_CHECK_SUBMENU_ITEM_ACCESSIBLE_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_CHECK_SUBMENU_ITEM_ACCESSIBLE, GtkCheckSubmenuItemAccessibleClass))
-#define GTK_IS_CHECK_SUBMENU_ITEM_ACCESSIBLE(obj)           (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_CHECK_SUBMENU_ITEM_ACCESSIBLE))
-#define GTK_IS_CHECK_SUBMENU_ITEM_ACCESSIBLE_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_CHECK_SUBMENU_ITEM_ACCESSIBLE))
-#define GTK_CHECK_SUBMENU_ITEM_ACCESSIBLE_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_CHECK_SUBMENU_ITEM_ACCESSIBLE, GtkCheckSubmenuItemAccessibleClass))
-
-typedef struct _GtkCheckSubmenuItemAccessible      GtkCheckSubmenuItemAccessible;
-typedef struct _GtkCheckSubmenuItemAccessibleClass GtkCheckSubmenuItemAccessibleClass;
-
-struct _GtkCheckSubmenuItemAccessible
-{
-  GtkSubmenuItemAccessible parent;
-};
-
-struct _GtkCheckSubmenuItemAccessibleClass
-{
-  GtkSubmenuItemAccessibleClass parent_class;
-};
-
-GType _gtk_check_submenu_item_accessible_get_type (void);
-
-G_END_DECLS
-
-#endif /* __GTK_CHECK_SUBMENU_ITEM_ACCESSIBLE_H__ */
index 84344d7666947164fe50a6af025497b1a607c404..3c88b31b34be4f3df136de8cc40bd772d049e056 100644 (file)
@@ -23,7 +23,7 @@
 #include "gtkradiomenuitemaccessible.h"
 
 
-G_DEFINE_TYPE (GtkRadioMenuItemAccessible, _gtk_radio_menu_item_accessible, GTK_TYPE_CHECK_SUBMENU_ITEM_ACCESSIBLE)
+G_DEFINE_TYPE (GtkRadioMenuItemAccessible, _gtk_radio_menu_item_accessible, GTK_TYPE_CHECK_MENU_ITEM_ACCESSIBLE)
 
 
 static AtkRelationSet *
index 5d64bc77f772f38a76afda1328a12eaa16502f59..4c80a51b545389bba31a2c93dfab8dcd74f6fc19 100644 (file)
@@ -20,7 +20,7 @@
 #ifndef __GTK_RADIO_MENU_ITEM_ACCESSIBLE_H__
 #define __GTK_RADIO_MENU_ITEM_ACCESSIBLE_H__
 
-#include "gtkchecksubmenuitemaccessible.h"
+#include "gtkcheckmenuitemaccessible.h"
 
 G_BEGIN_DECLS
 
@@ -36,14 +36,14 @@ typedef struct _GtkRadioMenuItemAccessibleClass GtkRadioMenuItemAccessibleClass;
 
 struct _GtkRadioMenuItemAccessible
 {
-  GtkCheckSubmenuItemAccessible parent;
+  GtkCheckMenuItemAccessible parent;
 
   GSList *old_group;
 };
 
 struct _GtkRadioMenuItemAccessibleClass
 {
-  GtkCheckSubmenuItemAccessibleClass parent_class;
+  GtkCheckMenuItemAccessibleClass parent_class;
 };
 
 GType _gtk_radio_menu_item_accessible_get_type (void);
index e08f5fb5e37a69e805ad4100e64cfef2e95adc70..5c6f5f0801f79d1325812f31b0913cb9f8954ef8 100644 (file)
@@ -33,7 +33,7 @@
 #include "gtkmarshalers.h"
 #include "gtkprivate.h"
 #include "gtkintl.h"
-#include "a11y/gtkchecksubmenuitemaccessible.h"
+#include "a11y/gtkcheckmenuitemaccessible.h"
 
 /**
  * SECTION:gtkcheckmenuitem
@@ -151,7 +151,7 @@ gtk_check_menu_item_class_init (GtkCheckMenuItemClass *klass)
 
   widget_class->draw = gtk_check_menu_item_draw;
 
-  gtk_widget_class_set_accessible_type (widget_class, GTK_TYPE_CHECK_SUBMENU_ITEM_ACCESSIBLE);
+  gtk_widget_class_set_accessible_type (widget_class, GTK_TYPE_CHECK_MENU_ITEM_ACCESSIBLE);
 
   menu_item_class->activate = gtk_check_menu_item_activate;
   menu_item_class->hide_on_activate = FALSE;